home *** CD-ROM | disk | FTP | other *** search
/ Nebula 2 / Nebula Two.iso / SourceCode / Tutorial / Stepstone_Tutorial / Fruit.h < prev    next >
Text File  |  1995-06-12  |  187b  |  15 lines

  1. #import <objc/Object.h>
  2.  
  3. @interface Fruit : Object
  4. {
  5.     char *color;
  6.     int diameter;
  7. }
  8. +create;
  9. -color:(char *) aColor;
  10. -(char *) color;
  11. -diameter: (int) aSize;
  12. -(int) diameter;
  13. -grow;
  14. @end
  15.